home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 30 / Amiga Format AFCD30 (Sep 1998, Issue 114).iso / -readerstuff- / jamie_seeney / install_twg < prev    next >
Text File  |  1998-06-17  |  1KB  |  70 lines

  1. ; installation script for The Worming Grounds
  2.  
  3. ; tell user that the installer will be creating a drawer for the game
  4.  
  5. (message
  6.   (cat "\nYour copy of TWG will be installed into your  "
  7.      "\"WormDC Drawer\". You will be asked where on your hard drive "
  8.          "(or other storage device) you want it Installed."
  9.   )
  10. )
  11.  
  12. ; ask user where to put the drawer
  13.  
  14. (set robolocate
  15.   (askdir
  16.     (prompt "Please indicate where your WormsDC Drawer Is ?"
  17.         "e.g.HD1:Games/WormsDC/???: /")
  18.     (help @askdir-help)
  19.     (default @default-dest)
  20.   )
  21. )
  22.  
  23.  
  24.  
  25. (set robopath (tackon robolocate "TWCustom"))
  26.  
  27. (complete 10)
  28.  
  29. (set @default-dest robopath)
  30.  
  31. ; copy Levels/ (dest robopath)
  32.  
  33. (message "\nThe files will now be copied from floppy disk to the new drawer.")
  34.  
  35. (askdisk
  36.   (prompt "Please insert the disk labeled \"TWG\".")
  37.   (help @askdisk-help)
  38.   (dest "TWG")
  39. )
  40.  
  41. (working "Copying files.")
  42.  
  43. (copyfiles
  44.   (source "TWG:Levels")
  45.   (dest robopath)
  46.   (all)
  47.   (infos)
  48. )
  49.  
  50.  
  51. (askdisk
  52.   (prompt "Please insert the disk labeled \"TWG2\".")
  53.   (help @askdisk-help)
  54.   (dest "TWG")
  55. )
  56.  
  57. (working "Copying files.")
  58.  
  59. (copyfiles
  60.   (source "TWG2:Levels")
  61.   (dest ( robopath))
  62.   (all)
  63.   (infos)
  64. )
  65.  
  66.  
  67.  
  68.  
  69.  
  70.